gtk_button_get_type
</SECTION>
-<SECTION>
-<FILE>gtkscalebutton</FILE>
-<TITLE>GtkScaleButton</TITLE>
-GtkScaleButton
-gtk_scale_button_new
-gtk_scale_button_set_icons
-gtk_scale_button_get_value
-gtk_scale_button_get_adjustment
-gtk_scale_button_set_adjustment
-<SUBSECTION Standard>
-GTK_TYPE_SCALE_BUTTON
-GTK_SCALE_BUTTON
-GTK_IS_SCALE_BUTTON
-GTK_SCALE_BUTTON_CLASS
-GTK_IS_SCALE_BUTTON_CLASS
-GTK_SCALE_BUTTON_GET_CLASS
-<SUBSECTION Private>
-gtk_scale_button_get_type
-GtkScaleButtonPrivate
-</SECTION>
-
-<SECTION>
-<FILE>gtkvolumebutton</FILE>
-<TITLE>GtkVolumeButton</TITLE>
-GtkVolumeButton
-gtk_volume_button_new
-<SUBSECTION Standard>
-GTK_VOLUME_BUTTON
-GTK_TYPE_VOLUME_BUTTON
-GTK_IS_VOLUME_BUTTON
-GTK_VOLUME_BUTTON_CLASS
-GTK_IS_VOLUME_BUTTON_CLASS
-GTK_VOLUME_BUTTON_GET_CLASS
-<SUBSECTION Private>
-gtk_volume_button_get_type
-</SECTION>
-
<SECTION>
<FILE>gtkcalendar</FILE>
<TITLE>GtkCalendar</TITLE>
gtk_scale_button_get_value
<SUBSECTION Standard>
GTK_SCALE_BUTTON
-GTK_SCALE_IS_BUTTON
+GTK_IS_SCALE_BUTTON
GTK_TYPE_SCALE_BUTTON
+GTK_SCALE_BUTTON_CLASS
+GTK_IS_SCALE_BUTTON_CLASS
GTK_SCALE_BUTTON_GET_CLASS
<SUBSECTION Private>
gtk_scale_button_get_type
gtk_text_view_get_type
gtk_text_child_anchor_get_type
GtkTextBTree
-GtkTextChildBody
-GtkTextPixbuf
GtkTextWindow
GtkTextPendingScroll
</SECTION>
gtk_tooltip_set_icon_from_stock
gtk_tooltip_set_custom
gtk_tooltip_trigger_tooltip_query
-gtk_tooltip_focus_in
-gtk_tooltip_focus_out
-gtk_tooltip_toggle_keyboard_mode
-gtk_tooltip_handle_event
-gtk_tooltip_hide
<SUBSECTION Standard>
GTK_TYPE_TOOLTIP
<SUBSECTION Private>
<FILE>gtkcellview</FILE>
<TITLE>GtkCellView</TITLE>
GtkCellView
-gtk_cell_view_get_use_fg
-gtk_cell_view_set_use_fg
gtk_cell_view_new
gtk_cell_view_new_with_text
gtk_cell_view_new_with_markup
GTK_VOLUME_BUTTON
GTK_IS_VOLUME_BUTTON
GTK_TYPE_VOLUME_BUTTON
+GTK_VOLUME_BUTTON_CLASS
+GTK_IS_VOLUME_BUTTON_CLASS
GTK_VOLUME_BUTTON_GET_CLASS
<SUBSECTION Private>
gtk_volume_button_get_type
/**
* gtk_scale_button_new
* @size: a stock icon size
- * @lower: the minimum value of the scale (usually 0)
- * @upper: the maximum value of the scale (usually 100)
- * @step_increment: the stepping of value when a scroll-wheel event,
- * or up/down arrow event occurs (usually 2)
+ * @min: the minimum value of the scale (usually 0)
+ * @max: the maximum value of the scale (usually 100)
+ * @step: the stepping of value when a scroll-wheel event,
+ * or up/down arrow event occurs (usually 2)
* @icons: a %NULL-terminated array of icon names, or %NULL if
- * you want to set the list later with gtk_scale_button_set_icons(). See
- * gtk_scale_button_set_icons() for details.
+ * you want to set the list later with gtk_scale_button_set_icons()
*
- * Creates a #GtkScaleButton, with a range between lower and upper, with
- * a stepping of step_increment.
+ * Creates a #GtkScaleButton, with a range between @min and @max, with
+ * a stepping of @step.
*
* Return value: a new #GtkScaleButton
*
*/
GtkWidget *
gtk_scale_button_new (GtkIconSize size,
- gdouble lower,
- gdouble upper,
- gdouble step_increment,
+ gdouble min,
+ gdouble max,
+ gdouble step,
const gchar **icons)
{
GtkScaleButton *button;
if (icons != NULL)
gtk_scale_button_set_icons (button, icons);
- gtk_range_set_range (GTK_RANGE (priv->scale), lower, upper);
- gtk_range_set_increments (GTK_RANGE (priv->scale),
- step_increment,
- 10 * step_increment);
+ gtk_range_set_range (GTK_RANGE (priv->scale), min, max);
+ gtk_range_set_increments (GTK_RANGE (priv->scale), step, 10 * step);
if (priv->size != size)
{
* Gets the #GtkAdjustment associated with the #GtkScaleButton's scale.
* See gtk_range_get_adjustment() for details.
*
+ * Returns: the adjustment associated with the scale
+ *
* Since: 2.12
*/
GtkAdjustment*